home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 5361 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.1 KB

  1. Path: informatik.tu-muenchen.de!news
  2. From: ieichens@appl-math.tu-muenchen.de (Ingo Eichenseher)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Can anyone answer the question?
  5. Date: Mon, 12 Feb 1996 13:56:36 GMT
  6. Organization: Technische Universitaet Muenchen, Germany    
  7. Distribution: world
  8. Message-ID: <4fnguf$btj@sunsystem5.informatik.tu-muenchen.de>
  9. References: <4fm3bc$t8v@news.netvoyage.net>
  10. NNTP-Posting-Host: p6.appl-math.tu-muenchen.de
  11. X-Newsreader: Forte Free Agent 1.0.82
  12.  
  13. evoir@netvoyage.net (Evoir) wrote:
  14.  
  15. >I tried to compile my program and I got the error:
  16. >Linker error: Group Dgroup exceedes 64K
  17.  
  18. >what does that mean? and what can I do to fix it.
  19.  
  20. It means that you have more than 64K global Data.
  21. Try using the 'huge' model or try to allocate some
  22. large global arrays by malloc instead of declaring
  23. them as global variables.
  24. /-----------------------------------------------------------------------\
  25. | Ingo Eichenseher - Lehrstuhl fuer Angewandte Mathematik - TU Muenchen |
  26. | Tel.: (089)552248-20, Fax.:(089)552248-19,  Tel. privat: (0821)425204 |
  27. \----------- http://www.appl-math.tu-muenchen.de/~ieichens/ ------------/
  28.  
  29.